home *** CD-ROM | disk | FTP | other *** search
- # ********************* Makefile **************************
- #
- # Makefile Name: mfdeltc.mak
- #
- # Make Program to Use: Borland Make
- #
- # Description: Makes the HIM Menu Manager demo mfdel.exe
- #
- # Programs Used During Make: Borland Turbo C compiler V1.5
- # Borland Turbo Linker V1.x
- #
- # Usage:
- # make -DMODEL=x -fmfdeltc.mak
- #
- # where x is s, c, m, or l case is important
- #/*
- # *
- # * Copyright 1988 Allsoft (tm)
- # * 100 Calle Playa Del Sol NE
- # * Albuquerque, NM 87109
- # *
- # * ALL RIGHTS RESERVED.
- # *
- # * Unauthorized distribution, adaptation or use may be
- # * subject to civil and criminal penalties.
- # *
- # */
- # ******* Filled by Polytron Version Control System ********
- #
- # $Author: james borders $
- #
- # $Date: 01 Dec 1988 12:23:48 $
- #
- # $Revision: 1.0 $
- #
- # **********************************************************
- #
- # NOTE:
- #
- # The Turbo C configuration file TURBOC.CFG must exist in the
- # current directory or in the directory containing TCC.EXE.
- # This file must have -I and -L directives which tell the Turbo
- # compiler and linker where to search for include files and libraries.
- #
- #
- # Compiler code for library identification
- #
- # ms == Microsoft C
- # tc == Turbo C
- #
- COMP =tc
- #
- # compiler default switches
- #
- OPT =-G -O -K -w-pia -w-par
- #
- # other macros
- #
- # default model is LARGE
- #
- !if !$d(MODEL)
- MODEL = l
- !endif
-
- CVC =
- CVL =
- REV =
- SRCS =
- DOCS =
- OBJS = mfdel.obj
- EXES =
- LIBS = him$(COMP)$(MODEL).lib
- LIB =
- #
- # transformation rules
- #
- .c.obj:
- tcc -c -DTURBOC -m$(MODEL) $(OPT) $(CVC) $*.c
-
- #
- # targets and dependencies
- #
- # .exe creation
- #
- mfdel.exe : mfdel.obj
- tcc -m$(MODEL) $(OBJS) $(LIBS)
-
- mfdel.obj : mfdel.c
-
-
-
-